home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / livecd.squashfs / usr / lib / python2.4 / sunau.pyo (.txt) < prev    next >
Python Compiled Bytecode  |  2005-10-18  |  17KB  |  547 lines

  1. # Source Generated with Decompyle++
  2. # File: in.pyo (Python 2.4)
  3.  
  4. """Stuff to parse Sun and NeXT audio files.
  5.  
  6. An audio file consists of a header followed by the data.  The structure
  7. of the header is as follows.
  8.  
  9.         +---------------+
  10.         | magic word    |
  11.         +---------------+
  12.         | header size   |
  13.         +---------------+
  14.         | data size     |
  15.         +---------------+
  16.         | encoding      |
  17.         +---------------+
  18.         | sample rate   |
  19.         +---------------+
  20.         | # of channels |
  21.         +---------------+
  22.         | info          |
  23.         |               |
  24.         +---------------+
  25.  
  26. The magic word consists of the 4 characters '.snd'.  Apart from the
  27. info field, all header fields are 4 bytes in size.  They are all
  28. 32-bit unsigned integers encoded in big-endian byte order.
  29.  
  30. The header size really gives the start of the data.
  31. The data size is the physical size of the data.  From the other
  32. parameters the number of frames can be calculated.
  33. The encoding gives the way in which audio samples are encoded.
  34. Possible values are listed below.
  35. The info field currently consists of an ASCII string giving a
  36. human-readable description of the audio file.  The info field is
  37. padded with NUL bytes to the header size.
  38.  
  39. Usage.
  40.  
  41. Reading audio files:
  42.         f = sunau.open(file, 'r')
  43. where file is either the name of a file or an open file pointer.
  44. The open file pointer must have methods read(), seek(), and close().
  45. When the setpos() and rewind() methods are not used, the seek()
  46. method is not  necessary.
  47.  
  48. This returns an instance of a class with the following public methods:
  49.         getnchannels()  -- returns number of audio channels (1 for
  50.                            mono, 2 for stereo)
  51.         getsampwidth()  -- returns sample width in bytes
  52.         getframerate()  -- returns sampling frequency
  53.         getnframes()    -- returns number of audio frames
  54.         getcomptype()   -- returns compression type ('NONE' or 'ULAW')
  55.         getcompname()   -- returns human-readable version of
  56.                            compression type ('not compressed' matches 'NONE')
  57.         getparams()     -- returns a tuple consisting of all of the
  58.                            above in the above order
  59.         getmarkers()    -- returns None (for compatibility with the
  60.                            aifc module)
  61.         getmark(id)     -- raises an error since the mark does not
  62.                            exist (for compatibility with the aifc module)
  63.         readframes(n)   -- returns at most n frames of audio
  64.         rewind()        -- rewind to the beginning of the audio stream
  65.         setpos(pos)     -- seek to the specified position
  66.         tell()          -- return the current position
  67.         close()         -- close the instance (make it unusable)
  68. The position returned by tell() and the position given to setpos()
  69. are compatible and have nothing to do with the actual position in the
  70. file.
  71. The close() method is called automatically when the class instance
  72. is destroyed.
  73.  
  74. Writing audio files:
  75.         f = sunau.open(file, 'w')
  76. where file is either the name of a file or an open file pointer.
  77. The open file pointer must have methods write(), tell(), seek(), and
  78. close().
  79.  
  80. This returns an instance of a class with the following public methods:
  81.         setnchannels(n) -- set the number of channels
  82.         setsampwidth(n) -- set the sample width
  83.         setframerate(n) -- set the frame rate
  84.         setnframes(n)   -- set the number of frames
  85.         setcomptype(type, name)
  86.                         -- set the compression type and the
  87.                            human-readable compression type
  88.         setparams(tuple)-- set all parameters at once
  89.         tell()          -- return current position in output file
  90.         writeframesraw(data)
  91.                         -- write audio frames without pathing up the
  92.                            file header
  93.         writeframes(data)
  94.                         -- write audio frames and patch up the file header
  95.         close()         -- patch up the file header and close the
  96.                            output file
  97. You should set the parameters before the first writeframesraw or
  98. writeframes.  The total number of frames does not need to be set,
  99. but when it is set to the correct value, the header does not have to
  100. be patched up.
  101. It is best to first set all parameters, perhaps possibly the
  102. compression type, and then write audio frames using writeframesraw.
  103. When all frames have been written, either call writeframes('') or
  104. close() to patch up the sizes in the header.
  105. The close() method is called automatically when the class instance
  106. is destroyed.
  107. """
  108. AUDIO_FILE_MAGIC = 779316836
  109. AUDIO_FILE_ENCODING_MULAW_8 = 1
  110. AUDIO_FILE_ENCODING_LINEAR_8 = 2
  111. AUDIO_FILE_ENCODING_LINEAR_16 = 3
  112. AUDIO_FILE_ENCODING_LINEAR_24 = 4
  113. AUDIO_FILE_ENCODING_LINEAR_32 = 5
  114. AUDIO_FILE_ENCODING_FLOAT = 6
  115. AUDIO_FILE_ENCODING_DOUBLE = 7
  116. AUDIO_FILE_ENCODING_ADPCM_G721 = 23
  117. AUDIO_FILE_ENCODING_ADPCM_G722 = 24
  118. AUDIO_FILE_ENCODING_ADPCM_G723_3 = 25
  119. AUDIO_FILE_ENCODING_ADPCM_G723_5 = 26
  120. AUDIO_FILE_ENCODING_ALAW_8 = 27
  121. AUDIO_UNKNOWN_SIZE = 0xFFFFFFFFL
  122. _simple_encodings = [
  123.     AUDIO_FILE_ENCODING_MULAW_8,
  124.     AUDIO_FILE_ENCODING_LINEAR_8,
  125.     AUDIO_FILE_ENCODING_LINEAR_16,
  126.     AUDIO_FILE_ENCODING_LINEAR_24,
  127.     AUDIO_FILE_ENCODING_LINEAR_32,
  128.     AUDIO_FILE_ENCODING_ALAW_8]
  129.  
  130. class Error(Exception):
  131.     pass
  132.  
  133.  
  134. def _read_u32(file):
  135.     x = 0x0L
  136.     for i in range(4):
  137.         byte = file.read(1)
  138.         if byte == '':
  139.             raise EOFError
  140.         
  141.         x = x * 256 + ord(byte)
  142.     
  143.     return x
  144.  
  145.  
  146. def _write_u32(file, x):
  147.     data = []
  148.     for i in range(4):
  149.         (d, m) = divmod(x, 256)
  150.         data.insert(0, m)
  151.         x = d
  152.     
  153.     for i in range(4):
  154.         file.write(chr(int(data[i])))
  155.     
  156.  
  157.  
  158. class Au_read:
  159.     
  160.     def __init__(self, f):
  161.         if type(f) == type(''):
  162.             import __builtin__ as __builtin__
  163.             f = __builtin__.open(f, 'rb')
  164.         
  165.         self.initfp(f)
  166.  
  167.     
  168.     def __del__(self):
  169.         if self._file:
  170.             self.close()
  171.         
  172.  
  173.     
  174.     def initfp(self, file):
  175.         self._file = file
  176.         self._soundpos = 0
  177.         magic = int(_read_u32(file))
  178.         if magic != AUDIO_FILE_MAGIC:
  179.             raise Error, 'bad magic number'
  180.         
  181.         self._hdr_size = int(_read_u32(file))
  182.         if self._hdr_size < 24:
  183.             raise Error, 'header size too small'
  184.         
  185.         if self._hdr_size > 100:
  186.             raise Error, 'header size ridiculously large'
  187.         
  188.         self._data_size = _read_u32(file)
  189.         if self._data_size != AUDIO_UNKNOWN_SIZE:
  190.             self._data_size = int(self._data_size)
  191.         
  192.         self._encoding = int(_read_u32(file))
  193.         if self._encoding not in _simple_encodings:
  194.             raise Error, 'encoding not (yet) supported'
  195.         
  196.         if self._encoding in (AUDIO_FILE_ENCODING_MULAW_8, AUDIO_FILE_ENCODING_ALAW_8):
  197.             self._sampwidth = 2
  198.             self._framesize = 1
  199.         elif self._encoding == AUDIO_FILE_ENCODING_LINEAR_8:
  200.             self._framesize = self._sampwidth = 1
  201.         elif self._encoding == AUDIO_FILE_ENCODING_LINEAR_16:
  202.             self._framesize = self._sampwidth = 2
  203.         elif self._encoding == AUDIO_FILE_ENCODING_LINEAR_24:
  204.             self._framesize = self._sampwidth = 3
  205.         elif self._encoding == AUDIO_FILE_ENCODING_LINEAR_32:
  206.             self._framesize = self._sampwidth = 4
  207.         else:
  208.             raise Error, 'unknown encoding'
  209.         self._framerate = int(_read_u32(file))
  210.         self._nchannels = int(_read_u32(file))
  211.         self._framesize = self._framesize * self._nchannels
  212.         if self._hdr_size > 24:
  213.             self._info = file.read(self._hdr_size - 24)
  214.             for i in range(len(self._info)):
  215.                 if self._info[i] == '\x00':
  216.                     self._info = self._info[:i]
  217.                     break
  218.                     continue
  219.             
  220.         else:
  221.             self._info = ''
  222.  
  223.     
  224.     def getfp(self):
  225.         return self._file
  226.  
  227.     
  228.     def getnchannels(self):
  229.         return self._nchannels
  230.  
  231.     
  232.     def getsampwidth(self):
  233.         return self._sampwidth
  234.  
  235.     
  236.     def getframerate(self):
  237.         return self._framerate
  238.  
  239.     
  240.     def getnframes(self):
  241.         if self._data_size == AUDIO_UNKNOWN_SIZE:
  242.             return AUDIO_UNKNOWN_SIZE
  243.         
  244.         if self._encoding in _simple_encodings:
  245.             return self._data_size / self._framesize
  246.         
  247.         return 0
  248.  
  249.     
  250.     def getcomptype(self):
  251.         if self._encoding == AUDIO_FILE_ENCODING_MULAW_8:
  252.             return 'ULAW'
  253.         elif self._encoding == AUDIO_FILE_ENCODING_ALAW_8:
  254.             return 'ALAW'
  255.         else:
  256.             return 'NONE'
  257.  
  258.     
  259.     def getcompname(self):
  260.         if self._encoding == AUDIO_FILE_ENCODING_MULAW_8:
  261.             return 'CCITT G.711 u-law'
  262.         elif self._encoding == AUDIO_FILE_ENCODING_ALAW_8:
  263.             return 'CCITT G.711 A-law'
  264.         else:
  265.             return 'not compressed'
  266.  
  267.     
  268.     def getparams(self):
  269.         return (self.getnchannels(), self.getsampwidth(), self.getframerate(), self.getnframes(), self.getcomptype(), self.getcompname())
  270.  
  271.     
  272.     def getmarkers(self):
  273.         pass
  274.  
  275.     
  276.     def getmark(self, id):
  277.         raise Error, 'no marks'
  278.  
  279.     
  280.     def readframes(self, nframes):
  281.         if self._encoding in _simple_encodings:
  282.             if nframes == AUDIO_UNKNOWN_SIZE:
  283.                 data = self._file.read()
  284.             else:
  285.                 data = self._file.read(nframes * self._framesize * self._nchannels)
  286.             if self._encoding == AUDIO_FILE_ENCODING_MULAW_8:
  287.                 import audioop as audioop
  288.                 data = audioop.ulaw2lin(data, self._sampwidth)
  289.             
  290.             return data
  291.         
  292.  
  293.     
  294.     def rewind(self):
  295.         self._soundpos = 0
  296.         self._file.seek(self._hdr_size)
  297.  
  298.     
  299.     def tell(self):
  300.         return self._soundpos
  301.  
  302.     
  303.     def setpos(self, pos):
  304.         if pos < 0 or pos > self.getnframes():
  305.             raise Error, 'position not in range'
  306.         
  307.         self._file.seek(pos * self._framesize + self._hdr_size)
  308.         self._soundpos = pos
  309.  
  310.     
  311.     def close(self):
  312.         self._file = None
  313.  
  314.  
  315.  
  316. class Au_write:
  317.     
  318.     def __init__(self, f):
  319.         if type(f) == type(''):
  320.             import __builtin__
  321.             f = __builtin__.open(f, 'wb')
  322.         
  323.         self.initfp(f)
  324.  
  325.     
  326.     def __del__(self):
  327.         if self._file:
  328.             self.close()
  329.         
  330.  
  331.     
  332.     def initfp(self, file):
  333.         self._file = file
  334.         self._framerate = 0
  335.         self._nchannels = 0
  336.         self._sampwidth = 0
  337.         self._framesize = 0
  338.         self._nframes = AUDIO_UNKNOWN_SIZE
  339.         self._nframeswritten = 0
  340.         self._datawritten = 0
  341.         self._datalength = 0
  342.         self._info = ''
  343.         self._comptype = 'ULAW'
  344.  
  345.     
  346.     def setnchannels(self, nchannels):
  347.         if self._nframeswritten:
  348.             raise Error, 'cannot change parameters after starting to write'
  349.         
  350.         if nchannels not in (1, 2, 4):
  351.             raise Error, 'only 1, 2, or 4 channels supported'
  352.         
  353.         self._nchannels = nchannels
  354.  
  355.     
  356.     def getnchannels(self):
  357.         if not self._nchannels:
  358.             raise Error, 'number of channels not set'
  359.         
  360.         return self._nchannels
  361.  
  362.     
  363.     def setsampwidth(self, sampwidth):
  364.         if self._nframeswritten:
  365.             raise Error, 'cannot change parameters after starting to write'
  366.         
  367.         if sampwidth not in (1, 2, 4):
  368.             raise Error, 'bad sample width'
  369.         
  370.         self._sampwidth = sampwidth
  371.  
  372.     
  373.     def getsampwidth(self):
  374.         if not self._framerate:
  375.             raise Error, 'sample width not specified'
  376.         
  377.         return self._sampwidth
  378.  
  379.     
  380.     def setframerate(self, framerate):
  381.         if self._nframeswritten:
  382.             raise Error, 'cannot change parameters after starting to write'
  383.         
  384.         self._framerate = framerate
  385.  
  386.     
  387.     def getframerate(self):
  388.         if not self._framerate:
  389.             raise Error, 'frame rate not set'
  390.         
  391.         return self._framerate
  392.  
  393.     
  394.     def setnframes(self, nframes):
  395.         if self._nframeswritten:
  396.             raise Error, 'cannot change parameters after starting to write'
  397.         
  398.         if nframes < 0:
  399.             raise Error, '# of frames cannot be negative'
  400.         
  401.         self._nframes = nframes
  402.  
  403.     
  404.     def getnframes(self):
  405.         return self._nframeswritten
  406.  
  407.     
  408.     def setcomptype(self, type, name):
  409.         if type in ('NONE', 'ULAW'):
  410.             self._comptype = type
  411.         else:
  412.             raise Error, 'unknown compression type'
  413.  
  414.     
  415.     def getcomptype(self):
  416.         return self._comptype
  417.  
  418.     
  419.     def getcompname(self):
  420.         if self._comptype == 'ULAW':
  421.             return 'CCITT G.711 u-law'
  422.         elif self._comptype == 'ALAW':
  423.             return 'CCITT G.711 A-law'
  424.         else:
  425.             return 'not compressed'
  426.  
  427.     
  428.     def setparams(self, .2):
  429.         (nchannels, sampwidth, framerate, nframes, comptype, compname) = .2
  430.         self.setnchannels(nchannels)
  431.         self.setsampwidth(sampwidth)
  432.         self.setframerate(framerate)
  433.         self.setnframes(nframes)
  434.         self.setcomptype(comptype, compname)
  435.  
  436.     
  437.     def getparams(self):
  438.         return (self.getnchannels(), self.getsampwidth(), self.getframerate(), self.getnframes(), self.getcomptype(), self.getcompname())
  439.  
  440.     
  441.     def tell(self):
  442.         return self._nframeswritten
  443.  
  444.     
  445.     def writeframesraw(self, data):
  446.         self._ensure_header_written()
  447.         nframes = len(data) / self._framesize
  448.         if self._comptype == 'ULAW':
  449.             import audioop
  450.             data = audioop.lin2ulaw(data, self._sampwidth)
  451.         
  452.         self._file.write(data)
  453.         self._nframeswritten = self._nframeswritten + nframes
  454.         self._datawritten = self._datawritten + len(data)
  455.  
  456.     
  457.     def writeframes(self, data):
  458.         self.writeframesraw(data)
  459.         if self._nframeswritten != self._nframes or self._datalength != self._datawritten:
  460.             self._patchheader()
  461.         
  462.  
  463.     
  464.     def close(self):
  465.         self._ensure_header_written()
  466.         if self._nframeswritten != self._nframes or self._datalength != self._datawritten:
  467.             self._patchheader()
  468.         
  469.         self._file.flush()
  470.         self._file = None
  471.  
  472.     
  473.     def _ensure_header_written(self):
  474.         if not self._nframeswritten:
  475.             if not self._nchannels:
  476.                 raise Error, '# of channels not specified'
  477.             
  478.             if not self._sampwidth:
  479.                 raise Error, 'sample width not specified'
  480.             
  481.             if not self._framerate:
  482.                 raise Error, 'frame rate not specified'
  483.             
  484.             self._write_header()
  485.         
  486.  
  487.     
  488.     def _write_header(self):
  489.         if self._comptype == 'NONE':
  490.             if self._sampwidth == 1:
  491.                 encoding = AUDIO_FILE_ENCODING_LINEAR_8
  492.                 self._framesize = 1
  493.             elif self._sampwidth == 2:
  494.                 encoding = AUDIO_FILE_ENCODING_LINEAR_16
  495.                 self._framesize = 2
  496.             elif self._sampwidth == 4:
  497.                 encoding = AUDIO_FILE_ENCODING_LINEAR_32
  498.                 self._framesize = 4
  499.             else:
  500.                 raise Error, 'internal error'
  501.         elif self._comptype == 'ULAW':
  502.             encoding = AUDIO_FILE_ENCODING_MULAW_8
  503.             self._framesize = 1
  504.         else:
  505.             raise Error, 'internal error'
  506.         self._framesize = self._framesize * self._nchannels
  507.         _write_u32(self._file, AUDIO_FILE_MAGIC)
  508.         header_size = 25 + len(self._info)
  509.         header_size = header_size + 7 & -8
  510.         _write_u32(self._file, header_size)
  511.         if self._nframes == AUDIO_UNKNOWN_SIZE:
  512.             length = AUDIO_UNKNOWN_SIZE
  513.         else:
  514.             length = self._nframes * self._framesize
  515.         _write_u32(self._file, length)
  516.         self._datalength = length
  517.         _write_u32(self._file, encoding)
  518.         _write_u32(self._file, self._framerate)
  519.         _write_u32(self._file, self._nchannels)
  520.         self._file.write(self._info)
  521.         self._file.write('\x00' * (header_size - len(self._info) - 24))
  522.  
  523.     
  524.     def _patchheader(self):
  525.         self._file.seek(8)
  526.         _write_u32(self._file, self._datawritten)
  527.         self._datalength = self._datawritten
  528.         self._file.seek(0, 2)
  529.  
  530.  
  531.  
  532. def open(f, mode = None):
  533.     if mode is None:
  534.         if hasattr(f, 'mode'):
  535.             mode = f.mode
  536.         else:
  537.             mode = 'rb'
  538.     
  539.     if mode in ('r', 'rb'):
  540.         return Au_read(f)
  541.     elif mode in ('w', 'wb'):
  542.         return Au_write(f)
  543.     else:
  544.         raise Error, "mode must be 'r', 'rb', 'w', or 'wb'"
  545.  
  546. openfp = open
  547.